Skip to main content

Get Notifications Without Media Review

GET /notifications/without-media-review

Description

Returns the authenticated user's notifications excluding media-review items.

Request Parameters

Requires Authentication: true

QUERY PARAMS

NameTypeRequiredDescription
pagenumberNoPage number. Defaults to 1.
maxPageSizenumberNoPage size. The API caps it at the shared max page size.
readbooleanNoOptional filter for read or unread notifications.

Usage Example

await axios.get(
"https://api.daykeeper.app/notifications/without-media-review?page=1",
{
headers: {
Authorization: `Bearer ${accessToken}`,
},
}
)

Success Response

{
"message": "notifications fetched successfully",
"data": [],
"page": 1,
"totalPages": 0,
"unreadCount": 4,
"hasUnread": true
}

Error Response

CodeDescription
401Missing or invalid access token
500Server error